home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Reverse Code Engineering RCE CD +sandman 2000
/
ReverseCodeEngineeringRceCdsandman2000.iso
/
RCE
/
Tools
/
Win95 Secrets
/
SETUP.Z
/
ASMRETRN.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1995-07-19
|
464 b
|
27 lines
;==================================
; APISPY32 - Matt Pietrek 1995
; FILE: ASMRETRN.ASM
;==================================
.386
.model flat
extrn _CCommonReturnPoint:proc
.code
public _AsmCommonReturnPoint
_AsmCommonReturnPoint proc
SUB ESP,4 ; Make space for return address
PUSHAD
MOV EAX,ESP
PUSH EAX
CALL _CCommonReturnPoint
ADD ESP,4
POPAD
RET
_AsmCommonReturnPoint endp
END